ISRO CSE 2017


Q31.

An Ethernet frame that is less than the IEEE 802.3 minimum length of 64 octets is called
GateOverflow

Q32.

What problem is solved by Dijikstra banker' algorithm?
GateOverflow

Q33.

Consider the disk system with 100 cylinders. The request to access the cylinders occur in the following sequence.4, 37, 10,7,19,73,2,15,6,20Assuming the head is currently at cylinder 50 what is the time taken to satisfy all requests if it takes 1 ms to move from one cylinder to adjacent one and shortest seek ime first algorithm is used.
GateOverflow

Q34.

What is the minimum number of two-input NAND gates used to perform the function of two-input OR gate?
GateOverflow

Q35.

The 2-input XOR has a high output only when the input values are
GateOverflow

Q36.

Which of the following algorithms solves the all pair shortest path problem?
GateOverflow

Q37.

Which symbol denote derived attributes in ER Model?
GateOverflow

Q38.

What is the output of the C++ program? #include < iostream > using namespace std; void square(int *x){ *x = (*x)++ * (*x); } void square(int *x, int *y){ *x = (*x) * --(*y); } int main() { int number = 30; square(&number, &number); cout < < number; return 0; }
GateOverflow

Q39.

What is the output of the following program? #include < stdio.h > int tmp=20; main() { printf("%d", tmp); func(); printf("%d", tmp); } func() { static int tmp=10; printf("%d", tmp); }
GateOverflow

Q40.

Consider the following function void swap(int a, int b) { int temp; temp = a; a = b; b = temp; } In order to exchange the values of two variables x and y.
GateOverflow